home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
extra
/
pro13
/
toupper.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-02-01
|
236b
|
17 lines
/*
toupper.C
Copyright (C) 1993, Geoff Friesen B.Sc.
All rights reserved.
*/
#define INCL_TOUPPER
#ifndef INCL_ISLOWER
#include "islower.C"
#endif
int toupper (int ch)
{
return (islower (ch) ? ch -= 32 : ch);
}